-
Notifications
You must be signed in to change notification settings - Fork 184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wasm build #93
Wasm build #93
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think the package-lock.json should be here
Add wasm build using a docker container. Expose some api needed only in wasm.
I think llhttp should abstract away the wasm instantiation, callback tracking, reading strings etc. maybe something like: const llhttp = require('llhttp/wasm');
const parser = new llhttp.Parser(llhttp.RESPONSE, {
onX() {},
onY() {},
})
parser.execute(bytes); // might throw instead of returning an errno You could also export |
Creating our instance is what we've done over at nodejs/undici#575. Where we on purpose only have implemented |
hmm I was thinking the logic would still be implemented by the user, like they'd put an llhttp.Parser inside their HTTPParser (like how node uses llhttp_t inside its HTTPParser). the interface on the llhttp side would just be responsible for converting errors and strings and keeping the callbacks consistent. I'm not maintaining this though so you do you. Also a sidenote, there's a useful crossover between versions of node that expose the internal http parser, and versions of node that support FinalizationRegistry, so I think you could hardcode gc on this side. |
I like this idea. Given that we are still in an early stage, as @ronag said even just a wasm module is enough for now if it's not a problem of course. There's a lot of room for improvement. I would be ok with merging this in a custom branch if it's better. |
It really depends what @indutny prefers :). |
Yes, of course |
Yay. WASM! I think we should strive for a saner API like @devsnek has posted, but having raw WASM support as an unstable feature is acceptable too. Not locking into JS API means that you'd have more room to experiment with it an undici, right? |
Yes, exactly. I think the JS API will organically define itself while we experiment (I would be happy to try to implement it). Defining a JS API here would also mean that we would have to install |
Just for reference:
i.e. if we put wasm in llhttp we might want to do some semver major (?) changes in the future related to optimizations of the API. If that makes sense? |
So is this ready for review? |
Yes it is. |
@indutny any idea when you might have time to review this? |
Hey,
Sorry for the delay. I'll try to look into it this weekend.
Thanks for submitting it again!
…On Wed, Mar 17, 2021 at 1:05 AM Robert Nagy ***@***.***> wrote:
@indutny <https://github.com/indutny> any idea when you might have time
to review this?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#93 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAB2HQ5KH36RMR4NSZJN5TLTEBPGDANCNFSM4YZEHGGQ>
.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks very good, but I've left few nitpicks/requests that have to be resolved before merging. Thank you for submitting it, and sorry for a long delay on my end.
No worries, thank you for the review. I'll work on it! |
Co-authored-by: Fedor Indutny <[email protected]>
Co-authored-by: Fedor Indutny <[email protected]>
To reiterate: these changes add some scripts to build wasm. Nothing is exposed in the package itself. If one wanted to use the build, they would have to copy the I see a lot of potential with import { createParser, constants } from 'llhttp';
const parser = createParser(constants.TYPE.RESPONSE, {
...// other options
}) As you already suggested. |
This reduces the context size from a few MB to a few KB. Minor cleanup in `examples/wasm.ts`.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome work. Thank you so much for taking time to address my review comments!
mkdirSync(join(WASM_SRC, 'build')); | ||
process.exit(0); | ||
} catch (error) { | ||
if (error.code !== 'EEXIST') { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice touch!
Released in v5.0.0 |
👋🏻 There.
This PR is based on the work started by @devsnek in https://github.com/devsnek/llhttp/tree/wasm.
A little background
We needed a wasm build of
llhttp
to implement a custom parser in nodejs/undici#575.The objective of these changes is to expose the required pieces in
api.(h|c)
to implement a parser using a web assembly build ofllhttp
and add the build logic to build the binary. We also needed to run the build in a docker container (nodejs/undici#22 (comment)).Given the tight coupling of the changes with the pieces used to build the
c
parser, we thought it was worth a shot opening a PR to discuss integrating these changes upstream.